home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Programming / AmigaTalk / Browser / GeneralMethods.bak < prev    next >
Text File  |  1998-09-07  |  5KB  |  493 lines

  1. Object:
  2.  ==
  3.  ~~
  4.  =
  5.  ~=
  6.  asString
  7.  asSymbol
  8.  class
  9.  copy
  10.  deepCopy
  11.  do:
  12.  error:
  13.  first
  14.  isKindOf:
  15.  isMemberOf:
  16.  isNil
  17.  next
  18.  notNil
  19.  print
  20.  printString
  21.  respondsTo:
  22.  shallowCopy
  23. UndefinedObject:
  24.  isNil
  25.  notNil
  26.  printString
  27. Symbol:
  28.  ==
  29.  printString
  30.  asString
  31. Form:
  32.  new
  33.  clipFrom: upperLeft to:
  34.  columns
  35.  display
  36.  eraseAt:
  37.  extent
  38.  first
  39.  next
  40.  overLayForm: sourceForm at:
  41.  placeForm: sourceForm at:
  42.  reversed
  43.  rotated
  44.  row:
  45.  row: index put:
  46.  rows
  47.  columns
  48.  display
  49.  eraseAt:
  50.  extent
  51.  printAt:
  52. Boolean:
  53.  &
  54.  |
  55.  and:
  56.  or:
  57.  eqv:
  58.  xor:
  59. True:
  60.  ifTrue:
  61.  ifFalse:
  62.  ifTrue: trueAlternativeBlock ifFalse:
  63.  ifFalse: falseAlternativeBlock ifTrue:
  64.  not
  65. False:
  66.  ifTrue:
  67.  ifFalse:
  68.  ifTrue: trueAlternativeBlock ifFalse:
  69.  ifFalse: falseAlternativeBlock ifTrue:
  70.  not
  71. Magnitude:
  72.  <=
  73.  <
  74.  =
  75.  ~=
  76.  >=
  77.  >
  78.  between: low and:
  79.  min:
  80.  max:
  81. Char:
  82.  ==
  83.  <
  84.  =
  85.  >
  86.  asciiValue
  87.  asLowercase
  88.  asUppercase
  89.  asString
  90.  compareError
  91.  digitValue
  92.  isAlphaNumeric
  93.  isDigit
  94.  isLetter
  95.  isLowercase
  96.  isSeparator
  97.  isUppercase
  98.  isVowel
  99.  printString
  100. Number:
  101.  maxtype:
  102.  =
  103.  <
  104.  >
  105.  +
  106.  -
  107.  *
  108.  /
  109.  ^
  110.  @
  111.  abs
  112.  exp
  113.  gamma
  114.  ln
  115.  log:
  116.  negated
  117.  negative
  118.  pi
  119.  positive
  120.  radians
  121.  raisedTo:
  122.  reciprocal
  123.  roundTo:
  124.  sign
  125.  sqrt
  126.  squared
  127.  strictlyPositive
  128.  to:
  129.  to: highValue by:
  130.  truncateTo:
  131. Integer:
  132.  =
  133.  >
  134.  <
  135.  +
  136.  - 
  137.  *
  138.  /
  139.  //
  140.  \\
  141.  allMask:
  142.  anyMask:
  143.  asCharacter
  144.  asFloat
  145.  asString
  146.  bitAnd:
  147.  bitAt:
  148.  bitInvert
  149.  bitOr:
  150.  bitShift:
  151.  bitXor:
  152.  even
  153.  factorial
  154.  gcd:
  155.  highBit
  156.  lcm:
  157.  noMask:
  158.  odd
  159.  quo:
  160.  radix:
  161.  rem:
  162.  timesRepeat:
  163. Float:
  164.  =
  165.  <
  166.  >
  167.  +
  168.  -
  169.  *
  170.  /
  171.  ^
  172.  arcCos
  173.  arcSin
  174.  arcTan
  175.  asFloat
  176.  asString
  177.  ceiling
  178.  coerce:
  179.  exp
  180.  floor
  181.  fractionPart
  182.  gamma
  183.  integerPart
  184.  ln
  185.  radix:
  186.  rounded
  187.  sqrt
  188.  truncated
  189. Radian:
  190.  new:
  191.  <
  192.  =
  193.  sin
  194.  cos
  195.  tan
  196.  asFloat
  197.  printString
  198. Point:
  199.  <
  200.  <=
  201.  >=
  202.  =
  203.  *
  204.  +
  205.  -
  206.  /
  207.  //
  208.  +
  209.  abs
  210.  asString
  211.  dist:
  212.  max:
  213.  min:
  214.  printString
  215.  transpose
  216.  x
  217.  x:
  218.  x: xValue y:
  219.  y
  220.  y:
  221. Pen:
  222.  new
  223.  circleRadius:
  224.  direction
  225.  down
  226.  erase
  227.  extent: lowerLeft to:
  228.  go:
  229.  goTo:
  230.  isUp
  231.  location
  232.  turn:
  233.  up
  234. PenForm:
  235.  new
  236.  add: startingPoint to:
  237.  with: aPen displayAt:
  238. PenSave:
  239.  setForm:
  240.  goTo:
  241. PenShow:
  242.  withPen:
  243.  poly: nSides length:
  244.  spiral: n angle:
  245. Random:
  246.  new
  247.  randomize
  248.  first
  249.  next
  250.  between: low and:
  251.  randInteger:
  252.  next:
  253. Collection:
  254.  addAll:
  255.  asArray
  256.  asBag
  257.  asSet
  258.  asList
  259.  asString
  260.  coerce:
  261.  collect:
  262.  deepCopy
  263.  detect:
  264.  detect: aBlock ifAbsent:
  265.  first
  266.  includes:
  267.  inject: thisValue into:
  268.  isEmpty
  269.  occurrencesOf:
  270.  printString
  271.  reject:
  272.  remove:
  273.  remove: oldObject ifAbsent:
  274.  select:
  275.  shallowCopy
  276.  size
  277. Bag:
  278.  new
  279.  add:
  280.  add: newObj withOccurrences:
  281.  remove: oldElement ifAbsent:
  282.  size
  283.  occurrencesOf:
  284.  first
  285.  next
  286. Set: 
  287.  new
  288.  add:
  289.  remove: oldElement ifAbsent:
  290.  size
  291.  occurrencesOf:
  292.  first
  293.  next
  294. KeyedCollection:
  295.  add:
  296.  addAll:
  297.  asDictionary
  298.  at:
  299.  atAll: aCollection put:
  300.  binaryDo:
  301.  collect:
  302.  includesKey:
  303.  indexOf:
  304.  indexOf: anElement ifAbsent:
  305.  keys
  306.  keysDo:
  307.  keysSelect:
  308.  remove:
  309.  removeKey:
  310.  removeKey: key ifAbsent:
  311.  select:
  312.  values
  313. Dictionary:
  314.  new
  315.  hashNumber:
  316.  getList:
  317.  at: aKey put:
  318.  at: aKey ifAbsent:
  319.  removeKey: aKey ifAbsent:
  320.  findAssociation: aKey inList:
  321.  first
  322.  next
  323.  printString
  324.  currentKey
  325.  checkBucket:
  326. AmigaTalk:
  327.  clearScreen
  328.  date
  329.  debug:
  330.  display
  331.  displayAssign
  332.  doPrimitive: primNumber withArguments:
  333.  noDisplay
  334.  perform: aMessage withArguments:
  335.  sh:
  336.  time:
  337. SequenceableCollection:
  338.  ,
  339.  collect:
  340.  copyFrom: start to:
  341.  copyWith:
  342.  copyWithout:
  343.  equals: aSubCollection startingAt:
  344.  findFirst:
  345.  findFirst: aBlock ifAbsent:
  346.  findLast:
  347.  findLast: aBlock ifAbsent:
  348.  firstKey
  349.  indexOfSubCollection: aSubCollection startingAt: anIndex ifAbsent:
  350.  indexOfSubCollection: aSubCollection startingAt:
  351.  last
  352.  replaceFrom: start to: stop with:
  353.  replaceFrom: first to: stop with: repcol startingAt:
  354.  reverseDo:
  355.  reversed
  356.  select:
  357.  sort
  358.  sort:
  359.  with: aSequenceableCollection do:
  360. Interval:
  361.  from: lowerBound to: upperBound by:
  362.  size
  363.  inRange:
  364.  first
  365.  next
  366.  at: index ifAbsent:
  367.  printString
  368.  coerce:
  369.  at: index put:
  370.  add:
  371.  removeKey: key ifAbsent:
  372.  deepCopy
  373.  shallowCopy
  374. List:
  375.  add:
  376.  addFirst:
  377.  addLast:
  378.  addAllFirst:
  379.  addAllLast:
  380.  coerce:
  381.  findLast
  382.  remove:
  383.  remove: anItem ifAbsent:
  384.  removeError
  385.  removeFirst
  386.  removeLast
  387.  first
  388.  next
  389.  current
  390.  last
  391.  isEmpty
  392. Semaphore:
  393.  new
  394.  new:
  395.  signal
  396.  wait
  397. File:
  398.  modeCharacter
  399.  modeInteger
  400.  modeString
  401.  at:
  402.  at: aPosition put:
  403.  currentKey
  404.  first
  405.  next
  406.  open:
  407.  open: aName for:
  408.  read
  409.  size
  410.  write:
  411. ArrayedCollection:
  412.  =
  413.  at: key ifAbsent:
  414.  coerce:
  415.  copyFrom: start to:
  416.  currentKey
  417.  deepCopy
  418.  do:
  419.  first
  420.  firstKey
  421.  lastKey
  422.  next
  423.  padTo:
  424.  shallowCopy
  425. Array:
  426.  new:
  427.  at:
  428.  at: aNumber put:
  429.  grow:
  430.  printString
  431.  size
  432. ByteArray:
  433.  new:
  434.  at:
  435.  at: index put:
  436.  printString
  437.  size
  438. String:
  439.  '
  440.  =
  441.  <
  442.  <=
  443.  >=
  444.  >
  445.  asSymbol
  446.  at:
  447.  at: aNumber put:
  448.  compareError
  449.  copyFrom: start to:
  450.  copyFrom: start length:
  451.  deepCopy
  452.  new:
  453.  printAt:
  454.  printString
  455.  print
  456.  size
  457.  sameAs:
  458. Block:
  459.  newProcess
  460.  newProcessWith:
  461.  fork
  462.  forkWith:
  463.  whileTrue
  464.  whileTrue:
  465.  whileFalse
  466.  whileFalse:
  467.  value
  468.  value:
  469.  value: a value:
  470.  value: a value: b value:
  471.  value: a value: b value: c value:
  472.  value: a value: b value: c value: d value:
  473. Class:
  474.  edit
  475.  list
  476.  new
  477.  new:
  478.  printString
  479.  respondsTo
  480.  respondsTo:
  481.  superClass
  482.  variables
  483.  view
  484. Process:
  485.  block
  486.  resume
  487.  suspend
  488.  state
  489.  terminate
  490.  termErr:
  491.  unblock
  492.  yield
  493.